home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / misc / emu / iecutil.lha / inc / graphics / text.h < prev    next >
Encoding:
Text File  |  1997-05-06  |  1.3 KB  |  47 lines

  1. {$ifndef GRAPHICS_TEXT_H}
  2. Const GRAPHICS_TEXT_H = 0;
  3. {$ifndef EXEC_PORTS_H;incl"exec/ports.h";endif}
  4. Const FS_NORMAL = 0;
  5.       FSB_EXTENDED = 3;
  6.       FSF_EXTENDED = 8;
  7.       FSB_ITALIC = 2;
  8.       FSF_ITALIC = 4;
  9.       FSB_BOLD = 1;
  10.       FSF_BOLD = 2;
  11.       FSB_UNDERLINED = 0;
  12.       FSF_UNDERLINED = 1;
  13.       FPB_ROMFONT = 0;
  14.       FPF_ROMFONT = 1;
  15.       FPB_DISKFONT = 1;
  16.       FPF_DISKFONT = 2;
  17.       FPB_REVPATH = 2;
  18.       FPF_REVPATH = 4;
  19.       FPB_TALLDOT = 3;
  20.       FPF_TALLDOT = 8;
  21.       FPB_WIDEDOT = 4;
  22.       FPF_WIDEDOT = 16;
  23.       FPB_PROPORTIONAL = 5;
  24.       FPF_PROPORTIONAL = 32;
  25.       FPB_DESIGNED = 6;
  26.       FPF_DESIGNED = 64;
  27.       FPB_REMOVED = 7;
  28.       FPF_REMOVED = 128;
  29. Type p_TextAttr = ^TextAttr;
  30.      TextAttr = record
  31.                   ta_Name: stryng;
  32.                   ta_YSize: Word;
  33.                   ta_Style, ta_Flags: Byte
  34.                 end;
  35.      p_TextFont = ^TextFont;
  36.      TextFont = record
  37.                   tf_Message: Message;
  38.                   tf_YSize: Word;
  39.                   tf_Style, tf_Flags: Byte;
  40.                   tf_XSize, tf_Baseline, tf_BoldSmear, tf_Accessors: Word;
  41.                   tf_LoChar, tf_HiChar: Byte;
  42.                   tf_CharData: Ptr;
  43.                   tf_Modulo: Word;
  44.                   tf_CharLoc, tf_CharSpace, tf_CharKern: Ptr
  45.                 end;
  46. {$endif}
  47.